home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / misc / gs261src.zip / gzht.h < prev    next >
Text File  |  1993-05-13  |  2KB  |  47 lines

  1. /* Copyright (C) 1989, 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gzht.h */
  20. /* Private halftone representation for Ghostscript */
  21.  
  22. /* Halftone parameter structure */
  23. typedef struct halftone_params_s {
  24.     float frequency;
  25.     float angle;
  26.     /* Computed values */
  27.     int width;
  28.     int height;
  29.     int order_size;            /* = width * height */
  30.     struct ht_bit_s *order;        /* whitening order */
  31. } halftone_params;
  32.  
  33. /*
  34.  * The whitening order is represented by an array stored in row order.
  35.  * The pixel represented by order[0] is whitened first.
  36.  * During sampling, order[i].mask is a normalized sample value.
  37.  * After sampling and sorting,
  38.  * order[i].offset is the byte index of the pixel in the rendering cache;
  39.  * order[i].mask is the mask to be or'ed into this byte and the
  40.  * following one.  (This is arranged so it will work properly on
  41.  * either big- or little-endian machines.)
  42.  */
  43. typedef struct ht_bit_s {
  44.     ushort offset;
  45.     ushort mask;
  46. } ht_bit;
  47.